home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / WINDOWS / CLIPSTAC.ARJ / CLIPSTAC.MAK < prev    next >
Text File  |  1992-03-27  |  1KB  |  33 lines

  1. DEBUGOPT=-v
  2. #DEBUGOPT2=-vi
  3. OPTS=-WS
  4. #-O2
  5. HDROPT=-H=clipstac.sym
  6. COMPILER=bcc
  7.  
  8. clipstac.exe: clipstac.obj winapp.lib clipstac.res
  9.     $(COMPILER) -Qx $(DEBUGOPT) $(OPTS) $(HDROPT) clipstac.obj winapp.lib
  10.     rc clipstac.res clipstac.exe
  11.  
  12. clipstac.obj: clipstac.cpp winapp.h windlg.h winmsg.h clipstac.h csapi.h arraymgr.h cursor.h clipbrd.h
  13.     $(COMPILER) $(DEBUGOPT) $(OPTS) $(HDROPT) -c clipstac
  14.  
  15. clipstac.res: clipstac.rc clipstac.dlg clipstac.ico clpstac2.ico csabout.dlg cshelp.dlg
  16.     rc -r clipstac.rc
  17.  
  18. winapp.lib: winapp.obj windlg.obj file.obj findfile.obj
  19.     tlib winapp /c -+winapp -+windlg -+file -+findfile
  20.  
  21. winapp.obj: winapp.h winapp.cpp winmsg.h
  22.     $(COMPILER) $(DEBUGOPT) $(OPTS) $(HDROPT) -c winapp
  23.  
  24. windlg.obj: windlg.h windlg.cpp winapp.h winmsg.h
  25.     $(COMPILER) $(DEBUGOPT) $(OPTS) $(HDROPT) -c windlg
  26.  
  27. file.obj: file.h file.cpp findfile.h stddefs.h
  28.     $(COMPILER) $(DEBUGOPT) $(OPTS) $(HDROPT) -c file
  29.  
  30. findfile.obj: findfile.h findfile.cpp stddefs.h
  31.     $(COMPILER) $(DEBUGOPT2) $(OPTS) $(HDROPT) -c findfile
  32.  
  33.